075b6f92784296d0a2ce799acc49cd4f0eced9f2,source/net/yacy/crawler/data/NoticedURL.java,NoticedURL,notEmptyLocal,#,113

Before Change


    }

    public boolean notEmptyLocal() {
        return this.coreStack.notEmpty() || this.limitStack.notEmpty() || this.noloadStack.notEmpty();
    }

    public int size() {

After Change


    }

    public boolean isEmptyLocal() {
        if (this.coreStack == null) return true;
        if (!this.coreStack.isEmpty()) return false;
        if (!this.limitStack.isEmpty()) return false;
        if (!this.noloadStack.isEmpty()) return false;
        return true;
    }